Overload | Description |
---|---|
NDeque<T> Constructor() | Default deque constructor |
NDeque<T> Constructor(Int32) | Creates a new deque with the specified capacity. |
NDeque<T> Constructor(Int32,INIterator<T>) | Creates a new queue, which is initialized with the remaining items of the specified iterator. |
NDeque<T> Constructor(INIterator<T>) | Creates a new queue, which is initialized with the remaining items of the specified iterator. |
NDeque<T> Constructor(INSet<T>) | Creates a new queue, which is initialized with the items of the specified set. |
NDeque<T> Constructor(T[],Int32) | Creates a new deque, which is initialized with the items of the specified array. |